The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse
Created in LaTeX using the following code:
\documentclass{standalone}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{calc,decorations.pathreplacing,decorations.markings}
\usetikzlibrary{fit,math,positioning,arrows.meta,shapes.geometric}
\tikzset{
n/.style={fill=black,circle, %% node
inner sep=0pt,minimum size=4pt},
e/.style={fill=black,circle, %% ellipses
inner sep=0pt,minimum size=2pt},
w/.style={fill=white,draw=white,circle, %% white (omitted) nodes
inner sep=0pt,minimum size=4pt},
c/.style={ellipse,draw=black,inner sep=1pt}, %% circles
b/.style={decoration={brace,amplitude=10pt},decorate,thick}, %% brace
a/.style={postaction={decorate,decoration={
markings, mark=at position .5 with
{\arrow[black]{Straight Barb[length=\al]}}
}}} %% mid arrow
}
\def\v{0.5cm} %% vertical node space
\def\h{1cm} %% horizontal node space
\def\s{1.8pt} %% space for weighted edges
\def\al{5pt} %% arrow length
\def\l{2.5*\v} %% label separator
\begin{document}
\begin{tikzpicture}
%% Nodes
\node[n] (1) at (0,0) {};
\foreach \x [evaluate=\x as \y using int(\x-1)] in {2,...,18} {
\node[n] (\x) [right=\h of \y] {};
}
%% Solid Edges
\foreach \x [evaluate=\x as \y using int(\x+1)]
in {1,3,4,6,7,11,12,14,15,17} {
\draw (\x.center) -- (\y.center);
}
%% Ellipses
\foreach \x [evaluate=\x as \y using int(\x+1)]
in {2,5,8,9,10,13,16} {
\foreach \i in {0.25,0.5,0.75} {
\node[e] at ($(\x)!\i!(\y)$) {};
}
}
%% Omitted Nodes
\foreach \x in {9,10} {
\node[w] at (\x) {};
}
%% Circled Nodes
\foreach \x in {4,7,12,15} {
\node[c,fit=(\x)] at (\x) {};
}
%% Braces
% Length 2
\foreach \x [evaluate=\x as \y using int(\x + 1)]
in {5,13} {
\node (b\x-1) at ($(\x) + (-0.5*\h,-\v)$) {};
\node (b\x-2) at ($(\y) + (0.5*\h,-\v)$) {};
\draw [b] (b\x-2) -- node [label={[yshift=-\l] $d-1$}] {} (b\x-1);
}
% Length 3
\foreach \x [evaluate=\x as \y using int(\x + 2)]
in {1,16} {
\node (b\x-1) at ($(\x) + (-0.5*\h,-\v)$) {};
\node (b\x-2) at ($(\y) + (0.5*\h,-\v)$) {};
\draw [b] (b\x-2) -- node [label={[yshift=-\l] $d-1$}] {} (b\x-1);
}
\end{tikzpicture}
\end{document}
Captions
Add a one-line explanation of what this file represents